home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ad_cgi.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  70 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11464);
  10.  script_bugtraq_id(2103);
  11.  script_version ("$Revision: 1.5 $");
  12.  script_cve_id("CAN-2001-0025");
  13.  
  14.  name["english"] = "ad.cgi";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "
  19. The CGI 'ad.cgi' is installed. This CGI has
  20. a well known security flaw that lets an attacker execute 
  21. arbitrary commands with the privileges of the http daemon 
  22. (usually root or nobody).
  23.  
  24. Solution : remove it from /cgi-bin.
  25.  
  26. Risk factor : High";
  27.  
  28.  
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Checks for the presence of /cgi-bin/ad.cgi";
  33.  
  34.  script_summary(english:summary["english"], francais:summary["francais"]);
  35.  
  36.  script_category(ACT_GATHER_INFO);
  37.  
  38.  
  39.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison",
  40.         francais:"Ce script est Copyright (C) 2003 Renaud Deraison");
  41.  family["english"] = "CGI abuses";
  42.  family["francais"] = "Abus de CGI";
  43.  script_family(english:family["english"], francais:family["francais"]);
  44.  script_dependencie("find_service.nes", "http_version.nasl");
  45.  script_require_ports("Services/www", 80);
  46.  exit(0);
  47. }
  48.  
  49. #
  50. # The script code starts here
  51. #
  52.  
  53. include("http_func.inc");
  54. include("http_keepalive.inc");
  55.  
  56.  
  57. port = get_http_port(default:80);
  58.  
  59. if(!get_port_state(port))exit(0);
  60.  
  61.  
  62. foreach dir (cgi_dirs())
  63. {
  64.  res = is_cgi_installed_ka(item:string(dir, "/ad.cgi"),
  65.          port:port);
  66.  
  67.  if( res == NULL ) exit (0);
  68.  if( res != 0 ) { security_hole(port); exit(0); }
  69. }
  70.